summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorflodavid <fl.david.53@gmail.com>2023-11-03 15:57:43 +0100
committerflodavid <fl.david.53@gmail.com>2023-11-25 19:30:45 +0100
commitac11f6e4c5da64db5a6fb2647afbb85164f06086 (patch)
treececd8662ff24c7d8d641b58e3d11f29089eee504
parentyuzu: create linux group in general settings (diff)
downloadyuzu-ac11f6e4c5da64db5a6fb2647afbb85164f06086.tar
yuzu-ac11f6e4c5da64db5a6fb2647afbb85164f06086.tar.gz
yuzu-ac11f6e4c5da64db5a6fb2647afbb85164f06086.tar.bz2
yuzu-ac11f6e4c5da64db5a6fb2647afbb85164f06086.tar.lz
yuzu-ac11f6e4c5da64db5a6fb2647afbb85164f06086.tar.xz
yuzu-ac11f6e4c5da64db5a6fb2647afbb85164f06086.tar.zst
yuzu-ac11f6e4c5da64db5a6fb2647afbb85164f06086.zip
-rw-r--r--externals/CMakeLists.txt1
-rw-r--r--externals/gamemode/CMakeLists.txt2
-rw-r--r--src/yuzu_cmd/CMakeLists.txt1
3 files changed, 1 insertions, 3 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt
index 4ce9f201e..406277fd7 100644
--- a/externals/CMakeLists.txt
+++ b/externals/CMakeLists.txt
@@ -191,7 +191,6 @@ endif()
if (UNIX)
add_subdirectory(gamemode)
- target_include_directories(gamemode PUBLIC gamemode/include)
endif()
# Breakpad
diff --git a/externals/gamemode/CMakeLists.txt b/externals/gamemode/CMakeLists.txt
index eb970023d..87095642e 100644
--- a/externals/gamemode/CMakeLists.txt
+++ b/externals/gamemode/CMakeLists.txt
@@ -1,7 +1,7 @@
# SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
# SPDX-License-Identifier: GPL-3.0-or-later
-project(gamemode)
+project(gamemode LANGUAGES CXX C)
add_library(gamemode include/gamemode_client.h)
diff --git a/src/yuzu_cmd/CMakeLists.txt b/src/yuzu_cmd/CMakeLists.txt
index 002f3e841..fbeba8813 100644
--- a/src/yuzu_cmd/CMakeLists.txt
+++ b/src/yuzu_cmd/CMakeLists.txt
@@ -44,7 +44,6 @@ target_link_libraries(yuzu-cmd PRIVATE SDL2::SDL2 Vulkan::Headers)
if(UNIX AND NOT APPLE)
install(TARGETS yuzu-cmd)
- target_link_libraries(yuzu-cmd PRIVATE gamemode)
endif()
if(WIN32)